home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / util / libs / graphics3d.lha / src / library / graphics3Dbase.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-17  |  834 b   |  36 lines

  1. /*
  2. **      $VER: graphics3Dbase.h 10.01 (01.11.97)
  3. **
  4. **      definition of Graphics3DBase
  5. **
  6. **      (C) Copyright 1996 Andreas R. Kleinert
  7. **      (C) Copyright 1997 Patrizio Biancalani
  8. **      All Rights Reserved.
  9. */
  10.  
  11. #ifndef GRAPHICS3D_GRAPHICS3DBASE_H
  12. #define GRAPHICS3D_GRAPHICS3DBASE_H
  13.  
  14. #ifndef  EXEC_LIBRARIES
  15. #include <exec/libraries.h>
  16. #endif /* EXEC_LIBRARIES_H */
  17.  
  18. struct Graphics3DBase
  19. {
  20.  struct Library         exb_LibNode;
  21.  APTR                   exb_SegList;
  22.  struct ExecBase       *exb_SysBase;
  23.  struct IntuitionBase  *exb_IntuitionBase;
  24.  struct GfxBase        *exb_GfxBase;
  25.  struct LayersBase     *exb_LayersBase;
  26.  struct MathIEEEBase   *exb_MathIeeeDoubBasBase;
  27.  struct MathIEEEBase   *exb_MathIeeeSingBasBase;
  28.  
  29. #ifdef DEBUG
  30.  struct DOSBase        *exb_DOSBase;
  31. #endif
  32.  
  33. };
  34.  
  35. #endif /* GRAPHICS3D_GRAPHICS3DBASE_H */
  36.